home *** CD-ROM | disk | FTP | other *** search
/ 3D Games - Real-time Rend…ng & Software Technology / 3D Games - Real-time Rendering & Software Technology.iso / flysdk / util / flyPlugin / Cstm2Dlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-30  |  1.5 KB  |  60 lines

  1. #if !defined(AFX_CSTM2DLG_H__40D36E36_7D66_11D2_9263_000021799871__INCLUDED_)
  2. #define AFX_CSTM2DLG_H__40D36E36_7D66_11D2_9263_000021799871__INCLUDED_
  3.  
  4. // cstm2dlg.h : header file
  5. //
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CCustom2Dlg dialog
  9.  
  10. class CCustom2Dlg : public CAppWizStepDlg
  11. {
  12. // Construction
  13. public:
  14.     CCustom2Dlg();
  15.     virtual BOOL OnDismiss();
  16.     char *GetParamClass(int type);
  17.     char *GetParamType(int type);
  18.     void InitDialog();
  19.  
  20. // Dialog Data
  21.     //{{AFX_DATA(CCustom2Dlg)
  22.     enum { IDD = IDD_CUSTOM2 };
  23.     CListBox    m_param;
  24.     CEdit    m_paramname;
  25.     CComboBox    m_paramtype;
  26.     CComboBox    m_classes;
  27.     //}}AFX_DATA
  28.  
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CCustom2Dlg)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CCustom2Dlg)
  41.     afx_msg void OnPaint();
  42.     afx_msg void OnParamDelete();
  43.     afx_msg void OnParamNew();
  44.     afx_msg void OnParamDown();
  45.     afx_msg void OnParamUp();
  46.     afx_msg void OnSelchangeClasses();
  47.     virtual BOOL OnInitDialog();
  48.     afx_msg void OnSelchangeParameters();
  49.     afx_msg void OnChangeParamName();
  50.     afx_msg void OnSelchangeParamType();
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.  
  55.  
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58.  
  59. #endif // !defined(AFX_CSTM2DLG_H__40D36E36_7D66_11D2_9263_000021799871__INCLUDED_)
  60.